home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / utils / exe.arc / EXECUTE.G next >
Text File  |  1990-03-13  |  179b  |  14 lines

  1. #
  2. #    execute.g
  3. #
  4. #    Programmer: John Buchanan
  5. #
  6. #    status:    Public Domain
  7. #
  8. #    If the file t.g exists move it to tt.g and execute it.
  9. #
  10. if -e t.g
  11.     mv t.g tt.g
  12.     tt.g
  13. endif
  14.